home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WINSYS.PAK / WSYSINC.H < prev   
Text File  |  1997-05-06  |  2KB  |  73 lines

  1. //----------------------------------------------------------------------------
  2. // Borland WinSys Library
  3. // Copyright (c) 1993, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   5.5  $
  6. //
  7. // Includes windowing system headers, with necessary macros defined
  8. //----------------------------------------------------------------------------
  9. #if !defined(WINSYS_WSYSINC_H)
  10. #define WINSYS_WSYSINC_H
  11.  
  12. #if !defined(WINSYS_DEFS_H)
  13. # include <winsys/defs.h>
  14. #endif
  15. #if !defined(SERVICES_WSYSINC_H)
  16. # include <services/wsysinc.h>
  17. #endif
  18.  
  19. //
  20. // Win 4.0 styles
  21. //
  22. #if !defined(WS_EX_MDICHILD)
  23. #define WS_EX_MDICHILD          0x00000040L
  24. #endif
  25. #if !defined(WS_EX_TOOLWINDOW)
  26. #define WS_EX_TOOLWINDOW        0x00000080L
  27. #endif
  28. #if !defined(WS_EX_WINDOWEDGE)
  29. #define WS_EX_WINDOWEDGE        0x00000100L
  30. #endif
  31. #if !defined(WS_EX_CLIENTEDGE)
  32. #define WS_EX_CLIENTEDGE        0x00000200L
  33. #endif
  34. #if !defined(WS_EX_CONTEXTHELP)
  35. #define WS_EX_CONTEXTHELP       0x00000400L
  36. #endif
  37. #if !defined(WS_EX_RIGHT)
  38. #define WS_EX_RIGHT             0x00001000L
  39. #endif
  40. #if !defined(WS_EX_LEFT)
  41. #define WS_EX_LEFT              0x00000000L
  42. #endif
  43. #if !defined(WS_EX_RTLREADING)
  44. #define WS_EX_RTLREADING        0x00002000L
  45. #endif
  46. #if !defined(WS_EX_LTRREADING)
  47. #define WS_EX_LTRREADING        0x00000000L
  48. #endif
  49. #if !defined(WS_EX_LEFTSCROLLBAR)
  50. #define WS_EX_LEFTSCROLLBAR     0x00004000L
  51. #endif
  52. #if !defined(WS_EX_RIGHTSCROLLBAR)
  53. #define WS_EX_RIGHTSCROLLBAR    0x00000000L
  54. #endif
  55. #if !defined(WS_EX_CONTROLPARENT)
  56. #define WS_EX_CONTROLPARENT     0x00010000L
  57. #endif
  58. #if !defined(WS_EX_STATICEDGE)
  59. #define WS_EX_STATICEDGE        0x00020000L
  60. #endif
  61. #if !defined(WS_EX_APPWINDOW)
  62. #define WS_EX_APPWINDOW         0x00040000L
  63. #endif
  64. #if !defined(WS_EX_OVERLAPPEDWINDOW)
  65. #define WS_EX_OVERLAPPEDWINDOW  (WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE)
  66. #endif
  67. #if !defined(WS_EX_PALETTEWINDOW) && defined(WS_EX_TOPMOST)
  68. #define WS_EX_PALETTEWINDOW     (WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST)
  69. #endif
  70.  
  71.  
  72. #endif  // WINSYS_WSYSINC_H
  73.